home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Guide.dxr / 00018.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  1.5 KB  |  46 lines

  1. global gqtvrinstance, objectpict, codelist, objfile, lightsprite, objnamesprite, objmarker
  2.  
  3. on InitPanoCallbacks
  4.   if isqtvrmovie(gqtvrinstance) then
  5.     qtvrsetrolloverhotspothandler(gqtvrinstance, "RolloverHotSpotHandler")
  6.     qtvrsetmouseoverhandler(gqtvrinstance, "MouseOverHandler")
  7.   end if
  8. end
  9.  
  10. on rolloverhotspothandler pHotSpotID
  11.   set newfile to getaProp(codelist, pHotSpotID)
  12.   if (pHotSpotID <> 0) and not voidp(newfile) then
  13.     set newfile to char 1 to 6 of newfile
  14.     set objfile to newfile
  15.     puppetSprite(objnamesprite, 1)
  16.     set smallpict to "B" & newfile & "1"
  17.     set objecttext to newfile
  18.     if (the number of member smallpict > 0) and (the number of member objecttext > 0) then
  19.       set the visible of sprite objectpict to 1
  20.       set the visible of sprite lightsprite to 1
  21.       set the visible of sprite objnamesprite to 1
  22.       set the visible of sprite objmarker to 1
  23.       swapmember(objectpict, smallpict, 1)
  24.       swapmember(objnamesprite, objecttext)
  25.       if the right of sprite objnamesprite > 640 then
  26.         set the locH of sprite objnamesprite to the locH of sprite objnamesprite - 15
  27.       end if
  28.       updateStage()
  29.     end if
  30.   else
  31.     qtvrexitmouseover(gqtvrinstance)
  32.     set the visible of sprite objmarker to 0
  33.     set the visible of sprite objectpict to 0
  34.     puppetSprite(objnamesprite, 0)
  35.     set the visible of sprite lightsprite to 0
  36.   end if
  37. end
  38.  
  39. on mouseoverhandler
  40.   if isqtvrmovie(gqtvrinstance) then
  41.     qtvrexitmouseover(gqtvrinstance)
  42.     synchronizing()
  43.     setsliderbymovietime()
  44.   end if
  45. end
  46.